home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Graphics Programming (2nd Edition) / Visual Basic Graphics Programming 2nd Edition.iso / Src / Ch5 / ObjPrint.frm (.txt) < prev    next >
Visual Basic Form  |  1999-04-05  |  1KB  |  49 lines

  1. VERSION 5.00
  2. Begin VB.Form frmObjPrint 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "ObjPrint"
  5.    ClientHeight    =   3090
  6.    ClientLeft      =   2640
  7.    ClientTop       =   1635
  8.    ClientWidth     =   3090
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    PaletteMode     =   1  'UseZOrder
  13.    ScaleHeight     =   3090
  14.    ScaleWidth      =   3090
  15.    Begin VB.Menu mnuFile 
  16.       Caption         =   "&File"
  17.       Begin VB.Menu mnuFilePrint 
  18.          Caption         =   "&Print"
  19.       End
  20.    End
  21. Attribute VB_Name = "frmObjPrint"
  22. Attribute VB_GlobalNameSpace = False
  23. Attribute VB_Creatable = False
  24. Attribute VB_PredeclaredId = True
  25. Attribute VB_Exposed = False
  26. Option Explicit
  27. ' Draw a diamond on the form or printer.
  28. Private Sub DrawPicture(obj As Object)
  29.     obj.CurrentX = 1540
  30.     obj.CurrentY = 100
  31.     obj.Line -Step(1440, 1440)
  32.     obj.Line -Step(-1440, 1440)
  33.     obj.Line -Step(-1440, -1440)
  34.     obj.Line -Step(1440, -1440)
  35. End Sub
  36. ' Draw the picture on the form.
  37. Private Sub Form_Paint()
  38.     Cls
  39.     DrawPicture Me
  40. End Sub
  41. ' Draw the picture on the Printer object.
  42. Private Sub mnuFilePrint_Click()
  43.     MousePointer = vbHourglass
  44.     DoEvents
  45.     DrawPicture Printer
  46.     Printer.EndDoc
  47.     MousePointer = vbDefault
  48. End Sub
  49.